home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / GCC / V2-4-5 / GPPLIBSR00 / cc / stdstreams < prev    next >
Text File  |  1993-08-04  |  4KB  |  127 lines

  1. //    This is part of the iostream library, providing input/output for C++.
  2. //    Copyright (C) 1992 Per Bothner.
  3. //
  4. //    This library is free software; you can redistribute it and/or
  5. //    modify it under the terms of the GNU Library General Public
  6. //    License as published by the Free Software Foundation; either
  7. //    version 2 of the License, or (at your option) any later version.
  8. //
  9. //    This library is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. //    Library General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU Library General Public
  15. //    License along with this library; if not, write to the Free
  16. //    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #include "ioprivate.h"
  19.  
  20. // The ANSI draft requires that operations on cin/cout/cerr can be
  21. // mixed with operations on stdin/stdout/stderr on a character by
  22. // character basis.  This normally requires that the streambuf's
  23. // used by cin/cout/cerr be stdiostreams.  However, if the stdio
  24. // implementation is the one that is built using this library,
  25. // then we don't need to, since in that case stdin/stdout/stderr
  26. // are identical to &__std_filebuf_0/&__std_filebuf_1/&__std_filebuf_2.
  27.  
  28. #ifdef _STDIO_USES_IOSTREAM
  29. #define USE_FILEBUF
  30. #endif
  31.  
  32. #ifdef NAMES_HAVE_UNDERSCORE
  33. #define UNDERSCORE "_"
  34. #else
  35. #define UNDERSCORE ""
  36. #endif
  37.  
  38. #ifdef USE_FILEBUF
  39. #define CIN_SBUF __std_filebuf_0
  40. #define COUT_SBUF __std_filebuf_1
  41. #define CERR_SBUF __std_filebuf_2
  42. static int use_stdiobuf = 0;
  43. #else
  44. #define CIN_SBUF __stdin_stdiobuf
  45. #define COUT_SBUF __stdout_stdiobuf
  46. #define CERR_SBUF __stderr_stdiobuf
  47. static int use_stdiobuf = 1;
  48. #endif
  49.  
  50. struct _fake_filebuf;
  51. extern _fake_filebuf __std_filebuf_0, __std_filebuf_1, __std_filebuf_2;
  52. struct _fake_stdiobuf;
  53. extern _fake_stdiobuf __stdin_stdiobuf, __stdout_stdiobuf, __stderr_stdiobuf;
  54.  
  55. #define cin CIN
  56. #define cout COUT
  57. #define cerr CERR
  58. #define clog CLOG
  59. #include "iostream.h"
  60. #undef cin
  61. #undef cout
  62. #undef cerr
  63. #undef clog
  64.  
  65. #ifdef __GNUG__
  66. #define PAD 0 /* g++ allows 0-length arrays. */
  67. #else
  68. #define PAD 1
  69. #endif
  70. struct _fake_istream {
  71.     struct myfields {
  72.     _ios_fields *vb; /* pointer to virtual base class ios */
  73.     _G_ssize_t _gcount;
  74.     } mine;
  75.     _ios_fields base;
  76.     char filler[sizeof(struct istream)-sizeof(struct _ios_fields)+PAD];
  77. };
  78. struct _fake_ostream {
  79.     struct myfields {
  80.     _ios_fields *vb; /* pointer to virtual base class ios */
  81.     } mine;
  82.     _ios_fields base;
  83.     char filler[sizeof(struct ostream)-sizeof(struct _ios_fields)+PAD];
  84. };
  85.  
  86. #define STD_STR(SBUF, TIE, EXTRA_FLAGS) \
  87.  (streambuf*)&SBUF, TIE, 0, ios::dont_close|ios::skipws|EXTRA_FLAGS, ' ',0,0,6
  88.  
  89. #define STREAM_DEF(TYPE, NAME, SBUF, TIE, EXTRA_FLAGS) \
  90.   TYPE NAME = { {&NAME.base}, {STD_STR(SBUF, TIE, EXTRA_FLAGS) }};
  91.  
  92. STREAM_DEF(_fake_ostream, cout, COUT_SBUF, NULL, 0)
  93. STREAM_DEF(_fake_ostream, cerr, CERR_SBUF, (ostream*)&cout, ios::unitbuf)
  94. STREAM_DEF(_fake_istream, cin, CIN_SBUF,  (ostream*)&cout, 0)
  95.  
  96. /* Only for (partial) compatibility with AT&T's library. */
  97. STREAM_DEF(_fake_ostream, clog, CERR_SBUF, (ostream*)&cout, 0)
  98.  
  99. // Switches between using __std_filebuf_{0,1,2} and
  100. // __std{in,out,err}_stdiobuf for standard streams.  This is
  101. // normally not needed, but is provided for AT&T compatibility.
  102.  
  103. int ios::sync_with_stdio(int new_state)
  104. {
  105. #ifdef _STDIO_USES_IOSTREAM
  106.     // It is always synced.
  107.     return 0;
  108. #else
  109.     if (new_state == use_stdiobuf) // The usual case now.
  110.     return use_stdiobuf;
  111.     if (new_state) {
  112.     cout.base._strbuf = (streambuf*)&__stdout_stdiobuf;
  113.     cin.base._strbuf = (streambuf*)&__stdin_stdiobuf;
  114.     cerr.base._strbuf = (streambuf*)&__stderr_stdiobuf;
  115.     clog.base._strbuf = (streambuf*)&__stderr_stdiobuf;
  116.     } else {
  117.     cout.base._strbuf = (streambuf*)&__std_filebuf_1;
  118.     cin.base._strbuf = (streambuf*)&__std_filebuf_0;
  119.     cerr.base._strbuf = (streambuf*)&__std_filebuf_2;
  120.     clog.base._strbuf = (streambuf*)&__std_filebuf_2;
  121.     }
  122.     int old_state = use_stdiobuf;
  123.     use_stdiobuf = new_state;
  124.     return old_state;
  125. #endif
  126. }
  127.